/**
 * settings/_tipography.scss
 */

:root {
  font-size: 14px;
  @media screen and (min-width: $screen-lg) {
    font-size: 16px;
  }
}
body {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
}
.title {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  @media screen and (min-width: $screen-lg) {
    font-size: 24px;
  }
}
.subtitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  @media screen and (min-width: $screen-lg) {
    font-size: 24px;
  }
}
.caption {
  font-size: 16px;
  line-height: 1.3;
  @media screen and (min-width: $screen-lg) {
    font-size: 20px;
  }
}
.legend {
  font-size: 14px;
  @media screen and (min-width: $screen-lg) {
    font-size: 20px;
  }
}
.note {
  font-size: 16px;
  @media screen and (min-width: $screen-lg) {
    font-size: 24px;
  }
}
.tiny {
  font-size: 10px;
}
.l-height {
  &-xxs {
    line-height: 1;
  }
  &-xs {
    line-height: 1.1;
  }
  &-sm {
    line-height: 1.2;
  }
  &-md {
    line-height: 1.3;
  }
  &-lg {
    line-height: 1.4;
  }
  &-xl {
    line-height: 1.5;
  }
  &-full {
    line-height: 200%;
  }
}
.txt {
  &-xxs {
    font-size: 10px;
    @media screen and (min-width: $screen-lg) {
      font-size: 12px;
    }
  }
  &-xs {
    font-size: 12px;
    @media screen and (min-width: $screen-lg) {
      font-size: 14px;
    }
  }
  &-sm {
    font-size: 16px;
    @media screen and (min-width: $screen-lg) {
      font-size: 20px;
    }
  }
  &-md {
    font-size: 20px;
    @media screen and (min-width: $screen-lg) {
      font-size: 24px;
    }
  }
  &-lg {
    font-size: 24px;
    @media screen and (min-width: $screen-lg) {
      font-size: 26px;
    }
  }
  &-fix {
    &-xs {
      font-size: 14px;
    }
    &-sm {
      font-size: 16px;
    }
    &-md {
      font-size: 20px;
    }
  }
}
.txt-w-light {
  font-weight: 300;
}
.txt-w-normal {
  font-weight: normal;
}
.txt-w-medium {
  font-weight: 500;
}
.txt-w-semibold {
  font-weight: 600;
}
.txt-w-bold {
  font-weight: bold;
}
.txt-w-extrabold {
  font-weight: 800;
}
.txt-italic {
  font-style: italic;
}
.txt-upper {
  text-transform: uppercase;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.text {
  h1, h2, h3, h4, h5, h6, p, span, ul, li, a {
    font-family: 'Montserrat', Verdana, Arial, sans-serif;
    font-weight: normal;
    margin: 0;
  }
  p, span, ul, li, a {
    font-size: 14px;
    line-height: 1.5;
  }
  strong, b {
    font-weight: bold;
  }
  a {
    color: var(--color-primary);
    font-weight: 600;
    &:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }
  }
  h1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    @media screen and (min-width: $screen-lg) {
      font-size: 24px;
    }
  }
  h2, h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    @media screen and (min-width: $screen-lg) {
      font-size: 20px;
    }
  }
  h4, h5, h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    @media screen and (min-width: $screen-lg) {
      font-size: 16px;
    }
  }
  ol, ul {
    padding-left: 30px;
  }
  ul {
    list-style-type: disc;
  }
}
